home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / gus / umid108.zip / DEVELOPR.TXT < prev    next >
Text File  |  1993-11-15  |  3KB  |  76 lines

  1. You must include the following files with your installation software.
  2. The customer is not expected to already have these:
  3.  
  4. ULTRAMID.EXE  - MIDI and Digital audio TSR
  5. UM206A.INI    - Configuration for people who have 2.06a or later
  6. UM206.INI     -                                   2.06
  7. UM200.INI     -                                   2.00 - 2.05 Release
  8. MT32.INI      - Use this configuration if your game uses MT32 patches
  9. GF166.COM     - UltraSound DIGPAK driver version 3.2 (optional)
  10. GF1DIGI.ADV   - AIL Digital audio driver (optional)
  11. GF1MIDI.ADV   - AIL MIDI driver (optional)
  12.  
  13. These files may be distributed royalty-free with your game, but are
  14. copyrighted by Forte Technologies.  These files are NOT public domain.
  15.  
  16. Here is an example batch script that you might use to install the
  17. appropriate files onto the users hard disk.  This example script
  18. assumes that these files are uncompressed on the A: drive, and that
  19. the destination directory is C:\GAME.
  20.  
  21. REM
  22. REM check to see if the user has at least version 2.00 of the GUS software
  23. REM
  24. IF EXIST %ULTRADIR%\MIDI\ACPIANO.PAT GOTO START
  25. echo :   WARNING: You are running out dated UltraSound     :
  26. echo :   patches. Please contact Advanced Gravis to get    :
  27. echo :   the updated software, (604)431-1807 Mon-Fri       :
  28. echo :   8am to 4pm.                                       :
  29. GOTO EXIT
  30. :START
  31. REM
  32. REM copy ultramid to the destination directory
  33. REM
  34. copy A:\ULTRAMID.EXE C:\GAME
  35. REM
  36. REM Find out which configuration file to copy, and then copy to ultramid.ini
  37. REM
  38. IF EXIST %ULTRADIR%\MIDI\HONKY.PAT GOTO V206A
  39. copy A:\UM200.ini C:\GAME\ULTRAMID.INI
  40. GOTO DRIVERS
  41. :V206A
  42. IF NOT EXIST %ULTRADIR%\MIDI\TREMSTR.PAT GOTO V206
  43. IF NOT EXIST %ULTRADIR%\MIDI\CHARANG.PAT GOTO V206
  44. IF NOT EXIST %ULTRADIR%\MIDI\ECHOVOX.PAT GOTO V206
  45. copy A:\UM206A.INI C:\GAME\ULTRAMID.INI
  46. goto DRIVERS
  47. :V206
  48. copy A:\UM206.INI C:\GAME\ULTRAMID.INI
  49. IF ERRORLEVEL 1 GOTO BAD_COPY
  50. :DRIVERS
  51. REM
  52. REM If you are using DIGPAK
  53. REM
  54. copy A:\GF166.COM C:\GAME
  55. REM
  56. REM If you are using the AIL digital audio driver
  57. REM
  58. copy A:\GF1DIGI.ADV C:\GAME
  59. REM
  60. REM If you are using the AIL midi driver
  61. REM
  62. copy A:\GF1MIDI.ADV C:\GAME
  63.  
  64. Here is a batch file you might create for the user to start the game:
  65. C:
  66. cd \GAME
  67. LH ULTRAMID -NULTRAMID.INI -DC:\GAME\
  68. IF ERRORLEVEL 1 GOTO DONE
  69. GAME
  70. ULTRAMID -F
  71. :DONE
  72.  
  73. In this case, the -N and -D parameters aren't necessary because UltraMID
  74. defaults to ultramid.ini in the current directory.  I just put it there
  75. so you could see how it works.
  76.